home *** CD-ROM | disk | FTP | other *** search
/ MaxiMac 2000 December / MaxiMac 109.iso / Macworld on CD n°109 / Applications (Mac OS X PB) / MacOSX ScreenSavers / Source Code / Pipes / buildlwo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-04  |  398 b   |  25 lines  |  [????/????]

  1. /*-
  2.  * buildlwo.h: Header file for Lightwave Object Display List Builder
  3.  * for OpenGL
  4.  *
  5.  * by Ed Mackey, 4/19/97
  6.  *
  7.  */
  8.  
  9. #ifndef __BUILD_LWO_H__
  10. #define __BUILD_LWO_H__
  11.  
  12. struct lwo {
  13.     int         num_pnts;
  14.     GLfloat    *pnts;
  15.     GLfloat    *normals;
  16.     unsigned short int *pols;
  17.     GLfloat    *smoothnormals;
  18. };
  19.  
  20. GLuint      BuildLWO(int wireframe, struct lwo *object);
  21.  
  22. #endif
  23.  
  24. /* End of buildlwo.h */
  25.